home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
18
/
5
/
DISK1853.ZIP
/
FILEDATE.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-08-20
|
768b
|
26 lines
echo OFF
if "%1" == "" goto HELP
if NOT "%2" == "" goto USERFILE
echo B
echo Executing command: ASCOUT *.*=%1
echo Displaying files created or updated on %1...
ASCOUT *.*=%1
goto END
:USERFILE
echo B
echo Executing command: ASCOUT %1=%2
echo Displaying files matching %1 created or updated on %2...
ASCOUT %1=%2
goto END
:HELP
echo B
echo To find all files of a date, enter FILEDATE followed by date
echo Example: FILEDATE 8/15/89
echo To find only certain files of a date, enter filespec followed by date
echo Examples: FILEDATE FILENAME.EXT 8/15/89
echo FILEDATE *.COM 8/15/89
echo B
echo For further information, see DUHELP help program
:END
echo ON